@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Gill Sans", sans-serif;
  min-height: 100vh;
  background-color: white;
  text-align: center;
}
.header {
	background-image: url(clouds.jpeg);
	background-repeat: no-repeat;
	background-position: center bottom; /* anchor cloud to bottom */
	background-size: cover;
	padding-top: 0px;
	padding-right: 20px;
	padding-left: 20px; /* space above + below the cloud */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 280px; /* give the cloud and text room */
	background-attachment: scroll;
	-webkit-box-shadow: 0px 0px;
	box-shadow: 0px 0px;
}
.plane {
	width: 365px;
	margin-bottom: 5px; /* balance space below plane */
	margin-left: -758px;
}
.header-text h1 {
	font-family: "Chalkboard", sans-serif;
	font-style: oblique;
	font-weight: bold;
	font-size: 102px;
	color: #131C8F;
	text-shadow: 2px 4px #F25E3D;
	margin: 0 auto 5px auto;
	text-align: center;
	padding-bottom: 0px;
}
.header-text {
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-grow: 0;
	position: static;
	padding-top: 0px;
	padding-bottom: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: -15px;
}
.subheader {
	font-size: 24px;
	color: #131C8F;
	margin-top: 11px;
	font-style: italic;
	font-weight: bold;
	text-align: center;
	padding-bottom: 10px;
	margin-left: 0px;
	margin-right: 0px;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
}
.gallery-item {
  width: 30%;
  background-color: #F2F2F2;
  border: 2px solid #F25E3D;
  border-radius: 12px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}
.gallery-item img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	min-height: 67px;
}
.gallery-item p {
  margin-top: 10px;
  font-size: 16px;
  color: #F25E3D;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.navbar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px auto;
}
.navbar ul {
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.navbar li {
  background-color: #9A8FBF;
  padding: 10px 20px;
  border-radius: 5px;
}

.navbar a {
  text-decoration: none;
  color:white;
  font-size: 18px;
}

.navbar li:hover {
  background-color: #F25E3D;
}

.navbar li:hover a {
  color: #F2F2F2;
}

.information {
  width: 60%;
  margin: 50px auto;
  border: 5px double #F25E3D;
  border-radius: 20px;
  background-color: #00E1FF;
  color: #F25E3D;
  padding: 40px;
  font-family: "Gill Sans", "Gill Sans MT", sans-serif;
}

.information p {
  font-size: 26px;
  font-weight: bold;
  margin: 10px 0;
}

.features table {
  width: 90%;
  margin: 40px auto;
  border-collapse: separate;
  border-spacing: 0;
}

.features td {
  padding: 30px;
  background-color: #F25E3D;
  color: #F2F2F2;
  font-size: 20px;
  border: 4px solid #00E1FF;
  border-radius: 31px;
  vertical-align: top;
}

.contact-table table {
  width: 100%;
  margin: 60px auto;
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", sans-serif;
  font-size: small;
  border-spacing: 20px;
}

.contact-table td {
  padding: 25px 30px;
  border: 2px solid #F25E3D;
  background-color: #F2F2F2;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  color: #F25E3D;
}

.contact-table a {
  color: #F25E3D;
  text-decoration: none;
  font-weight: bold;
}

.contact-table a:hover {
  color: #131C8F;
  text-decoration: underline;
}

.slideshow-container {
  text-align: center;
  margin-top: 30px;
}

.slideshow-container img {
  max-width: 90%;
  max-height: 400px;
  object-fit: contain;
  border: 3px solid #9A8FBF;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slideshow-container button {
  background-color: #9A8FBF;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px 5px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slideshow-container button:hover {
  background-color: #F25E3D;
}
.form-section {
  background-color: #EAF8FB;
  padding: 50px 20px;
  text-align: center;
  margin: 60px auto;
  width: 80%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.styled-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.form-row.full {
  display: block;
  width: 100%;
}

.styled-form input,
.styled-form textarea {
  padding: 15px;
  border: 2px solid #00A8E8;
  border-radius: 10px;
  font-size: 16px;
  font-family: "Gill Sans", sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.form-row input {
  max-width: 300px;
}

.form-row.full textarea {
  width: 100%;
  max-width: 100%;
  resize: vertical;
}

.form-row.full input[type="submit"] {
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

.styled-form input[type="submit"] {
  background-color: #9A8FBF;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  padding: 15px;
}

.styled-form input[type="submit"]:hover {
  background-color: #F25E3D;
}

.footer {
  background-color: #00E1FF;
  color: #F25E3D;
  text-align: center;
  padding: 20px 15px;
  font-size: 18px;
  font-weight: bold;
  font-family: "Gill Sans", "Gill Sans MT", sans-serif;
  margin-top: 60px;
  letter-spacing: 0.5px;
}
/* it was not responsive to smaller screen or when i was minimizing the window so I asked Chatgpt and it told me to add this hoping it will work */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px auto; /* Reset negative margin */
  }

  .navbar li {
    margin: 8px 0;
    width: 80%;
    text-align: center;
  }

  .header {
    padding: 20px 10px;
    background-position: center bottom;
  }

  .plane {
    width: 120px;
    margin-bottom: 15px;
    margin-left: 0; /* reset horizontal shift */
  }

  .header-text {
    margin-top: 0;
    padding-top: 0;
  }

  .header-text h1 {
    font-size: 2rem;
    margin: 0 auto 5px auto; /* prevent cropping */
    text-align: center;
  }

  .subheader {
	font-size: 18px;
	margin: 0 auto 10px auto;
	text-align: center;
	float: none;
  }

  .information {
    width: 90%;
    padding: 20px;
  }

  .features td {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .contact-table td {
	display: block;
	width: 100%;
	margin-bottom: 15px;
  }
	/* some of the things like gallery was showing elongated on mobile view so I asked Chatgpt to help fix that*/
.gallery {
  flex-direction: column;
  align-items: center;
}
.gallery-item {
  width: 90%;
  max-width: 400px;
}
  .footer {
    font-size: 16px;
    padding: 15px 10px;
  }
}
